home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / tools / gcc / gcc270_base.lha / gnu / GccFindHit / Makefile < prev    next >
Encoding:
Makefile  |  1995-05-23  |  362 b   |  12 lines

  1. CC = gcc
  2. #uncomment the following line if the host is a little endian machine
  3. #(the Amiga is *not* little endian :-)
  4. #ENDIANNESS = -DLITTLE_ENDIAN
  5.  
  6. #Comment the following line if your compiler doesn't like it
  7. #or if you absolutely want ixemul
  8. AFLAGS = -noixemul
  9.  
  10. GccFindHit: GccFindHit.c defs.h
  11.     $(CC) $(AFLAGS) -Wall -O $(ENDIANNESS) GccFindHit.c -o GccFindHit
  12.